home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 7 / Night Owl Shareware (NOPV7)(Night Owl Publisher Inc.)(1992).bin / 038a / bash1_12.arj / BASH1-12.TAR / bash-1.12 / documentation / Makefile < prev    next >
Makefile  |  1991-07-29  |  768b  |  33 lines

  1. # This Makefile is for the Bash/documentation directory -*- text -*-.
  2. #
  3.  
  4. all: features.dvi features.info bash.txt
  5.  
  6. features.dvi: texindex features.texi
  7.     tex features.texi
  8.     ./texindex features.??
  9.     tex features.texi
  10.  
  11. features.info: features.texi
  12.     makeinfo features.texi
  13.  
  14. bash.dvi: texindex bash.texinfo
  15.     tex bash.texinfo
  16.     ./texindex bash.??
  17.     tex bash.texinfo
  18.  
  19. bash.txt: bash.1
  20.     nroff -man bash.1 >bash.txt
  21.  
  22. texindex: texindex.o
  23.     $(CC) -o $@ $(LDFLAGS) $(CFLAGS) $?
  24. texindex.o: texindex.c
  25.  
  26. clean:
  27.     rm -f *.aux *.cp *.fn *.ky *.log *.pg *.toc *.tp *.vr *.cps *.pgs \
  28.           *.fns *.kys *.tps *.vrs *.o core texindex
  29.  
  30. squeaky-clean:
  31.     rm -f *.aux *.cp *.fn *.ky *.log *.pg *.toc *.tp *.vr *.cps *.pgs \
  32.           *.dvi *.info *.info-* *.fns *.kys *.tps *.vrs *.o core texindex
  33.